---
import { CollectionEntry, getCollection } from 'astro:content';
import MainLayout from '../layouts/MainLayout.astro';
export async function getStaticPaths() {
const docs = await getCollection('docs');
return docs.map((entry) => ({
params: {
slug: entry.slug,
},
props: entry,
}));
}
type Props = CollectionEntry<'docs'>;
const post = Astro.props;
const { Content, headings } = await post.render();
---
ansg191/rss-bridge/'>rss-bridge
|
Unnamed repository; edit this file 'description' to name the repository. | |
Age | Commit message (Expand) | Author | Files | Lines |